home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Texteditors
/
EDT
/
Beispiele
/
Umlaute.edt
< prev
next >
Wrap
Text File
|
1996-09-26
|
542b
|
25 lines
/* edt */
OPTIONS RESULTS
a=GetClip("Umlaute?")
IF a="AUS" THEN DO
'SetKey "ä" `Insert "ä"`'
'SetKey "Ä" `Insert "Ä"`'
'SetKey "ü" `Insert "ü"`'
'SetKey "Ü" `Insert "Ü"`'
'SetKey "ö" `Insert "ö"`'
'SetKey "Ö" `Insert "Ö"`'
'SetKey "ß" `Insert "ß"`'
SetClip("Umlaute?","AN")
END
ELSE DO
'SetKey "ä" `Insert "ae"`'
'SetKey "Ä" `Insert "Ae"`'
'SetKey "ü" `Insert "ue"`'
'SetKey "Ü" `Insert "Ue"`'
'SetKey "ö" `Insert "oe"`'
'SetKey "Ö" `Insert "Oe"`'
'SetKey "ß" `Insert "ss"`'
SetClip("Umlaute?","AUS")
END